2026-04-10 18:38:34,422 [ 199225 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2026-04-10 18:38:34,422 [ 199225 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:79, check_args_and_update_paths) 2026-04-10 18:38:34,422 [ 199225 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:90, check_args_and_update_paths) 2026-04-10 18:38:34,422 [ 199225 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:92, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_490ioh --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False created: 10/10 workers 10 workers [1 item] scheduling tests via LoadFileScheduling test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup [gw1] [100%] FAILED test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup =================================== FAILURES =================================== _________________________ test_shutdown_cancels_backup _________________________ [gw1] linux -- Python 3.10.12 /usr/bin/python3 def test_shutdown_cancels_backup(): > with NoTrashChecker() as no_trash_checker: test_backup_restore_on_cluster/test_cancel_backup.py:556: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = type = None, value = None, traceback = None def __exit__(self, type, value, traceback): list_of_znodes = set( node1.query( "SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' " + "AND NOT (name == 'alive_tracker')" ).splitlines() ) new_znodes = list_of_znodes.difference(self.__previous_list_of_znodes) if new_znodes: print(f"Found nodes in ZooKeeper: {new_znodes}") for node in new_znodes: print( f"Nodes in '/clickhouse/backups/{node}':\n" + node1.query( f"SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups/{node}'" ) ) print( f"Nodes in '/clickhouse/backups/{node}/stage':\n" + node1.query( f"SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups/{node}/stage'" ) ) if self.check_zookeeper: assert new_znodes == set() list_of_backups = set( os.listdir(os.path.join(node1.cluster.instances_dir, "backups")) ) new_backups = list_of_backups.difference(self.__previous_list_of_backups) unfinished_backups = set( backup for backup in new_backups if not os.path.exists( os.path.join(node1.cluster.instances_dir, "backups", backup, ".backup") ) ) new_backups = set( backup for backup in new_backups if backup not in unfinished_backups ) if new_backups: print(f"Found new backups: {new_backups}") if unfinished_backups: print(f"Found unfinished backups: {unfinished_backups}") assert new_backups == set(self.expect_backups) assert unfinished_backups.difference(self.allow_unfinished_backups) == set() all_errors = set() start_time = time.strftime( "%Y-%m-%d %H:%M:%S", self.__start_time_for_collecting_errors ) for node in nodes: errors_query_result = node.query( "SELECT name FROM system.errors WHERE last_error_time >= toDateTime('" + start_time + "') " + "AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) " + "AND NOT (name == 'NO_ELEMENTS_IN_CONFIG')" ) errors = errors_query_result.splitlines() if errors: print(f"{get_node_name(node)}: Found errors: {errors}") print( node.query( "SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('" + start_time + "')" ) ) for error in errors: > assert (error in self.expect_errors) or (error in self.allow_errors) E AssertionError: assert ('NETLINK_ERROR' in ['QUERY_WAS_CANCELLED'] or 'NETLINK_ERROR' in []) E + where ['QUERY_WAS_CANCELLED'] = .expect_errors E + and [] = .allow_errors test_backup_restore_on_cluster/test_cancel_backup.py:394: AssertionError ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2026-04-10 18:38:42.347000 [ 638 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:121, run_and_check) 2026-04-10 18:38:42.371000 [ 638 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-04-10 18:38:42.371000 [ 638 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2026-04-10 18:38:42.371000 [ 638 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2026-04-10 18:38:42.371000 [ 638 ] DEBUG : Command:[docker network prune --force] (cluster.py:121, run_and_check) 2026-04-10 18:38:42.398000 [ 638 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:121, run_and_check) 2026-04-10 18:38:42.401000 [ 638 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:145, run_and_check) 2026-04-10 18:38:42.402000 [ 638 ] INFO : Running tests in /ClickHouse/tests/integration/test_backup_restore_on_cluster/test_cancel_backup.py (cluster.py:2748, start) 2026-04-10 18:38:42.402000 [ 638 ] DEBUG : Cluster start called. is_up=False (cluster.py:2755, start) 2026-04-10 18:38:42.423000 [ 638 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:840, print_all_docker_pieces) 2026-04-10 18:38:42.443000 [ 638 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:848, print_all_docker_pieces) 2026-04-10 18:38:42.466000 [ 638 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw1 are DRIVER VOLUME NAME (cluster.py:856, print_all_docker_pieces) 2026-04-10 18:38:42.466000 [ 638 ] DEBUG : Cleanup called (cluster.py:861, cleanup) 2026-04-10 18:38:42.488000 [ 638 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:840, print_all_docker_pieces) 2026-04-10 18:38:42.508000 [ 638 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:848, print_all_docker_pieces) 2026-04-10 18:38:42.527000 [ 638 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw1 are DRIVER VOLUME NAME (cluster.py:856, print_all_docker_pieces) 2026-04-10 18:38:42.527000 [ 638 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclustercancelbackup-gw1-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2026-04-10 18:38:42.546000 [ 638 ] DEBUG : Unstopped containers: {} (cluster.py:875, cleanup) 2026-04-10 18:38:42.546000 [ 638 ] DEBUG : No running containers for project: roottestbackuprestoreonclustercancelbackup-gw1 (cluster.py:889, cleanup) 2026-04-10 18:38:42.547000 [ 638 ] DEBUG : Trying to prune unused networks... (cluster.py:895, cleanup) 2026-04-10 18:38:42.568000 [ 638 ] DEBUG : Trying to prune unused images... (cluster.py:911, cleanup) 2026-04-10 18:38:42.568000 [ 638 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2026-04-10 18:38:42.594000 [ 638 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2026-04-10 18:38:42.595000 [ 638 ] DEBUG : Images pruned (cluster.py:914, cleanup) 2026-04-10 18:38:42.595000 [ 638 ] DEBUG : Trying to prune unused volumes... (cluster.py:920, cleanup) 2026-04-10 18:38:42.595000 [ 638 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2026-04-10 18:38:42.616000 [ 638 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-04-10 18:38:42.616000 [ 638 ] DEBUG : Volumes pruned: 1 (cluster.py:925, cleanup) 2026-04-10 18:38:42.616000 [ 638 ] DEBUG : Setup directory for instance: node1 (cluster.py:2768, start) 2026-04-10 18:38:42.618000 [ 638 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4638, create_dir) 2026-04-10 18:38:42.618000 [ 638 ] DEBUG : Create directory for common tests configuration (cluster.py:4643, create_dir) 2026-04-10 18:38:42.618000 [ 638 ] DEBUG : Copy common configuration from helpers (cluster.py:4663, create_dir) 2026-04-10 18:38:42.619000 [ 638 ] DEBUG : Generate and write macros file (cluster.py:4715, create_dir) 2026-04-10 18:38:42.620000 [ 638 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/lesser_timeouts.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/slow_backups.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/shutdown_cancel_backups.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/configs/config.d (cluster.py:4755, create_dir) 2026-04-10 18:38:42.621000 [ 638 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/database (cluster.py:4772, create_dir) 2026-04-10 18:38:42.621000 [ 638 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/logs (cluster.py:4783, create_dir) 2026-04-10 18:38:42.621000 [ 638 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4864, create_dir) 2026-04-10 18:38:42.621000 [ 638 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/backups (cluster.py:4893, create_dir) 2026-04-10 18:38:42.622000 [ 638 ] DEBUG : Setup directory for instance: node2 (cluster.py:2768, start) 2026-04-10 18:38:42.622000 [ 638 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4638, create_dir) 2026-04-10 18:38:42.623000 [ 638 ] DEBUG : Create directory for common tests configuration (cluster.py:4643, create_dir) 2026-04-10 18:38:42.623000 [ 638 ] DEBUG : Copy common configuration from helpers (cluster.py:4663, create_dir) 2026-04-10 18:38:42.624000 [ 638 ] DEBUG : Generate and write macros file (cluster.py:4715, create_dir) 2026-04-10 18:38:42.624000 [ 638 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/lesser_timeouts.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/slow_backups.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/shutdown_cancel_backups.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/configs/config.d (cluster.py:4755, create_dir) 2026-04-10 18:38:42.625000 [ 638 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/database (cluster.py:4772, create_dir) 2026-04-10 18:38:42.625000 [ 638 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/logs (cluster.py:4783, create_dir) 2026-04-10 18:38:42.626000 [ 638 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4864, create_dir) 2026-04-10 18:38:42.626000 [ 638 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/backups (cluster.py:4893, create_dir) 2026-04-10 18:38:42.626000 [ 638 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'LSAN_OPTIONS': 'suppressions=/etc/clickhouse-server/lsan_suppressions.txt', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw', 'keeper_binary': '/clickhouse', 'keeper_cmd_prefix': 'clickhouse keeper', 'image': 'altinityinfra/integration-test:5ccda723c1fc', 'user': '0', 'keeper_fs': 'bind', 'keeper_logs_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/log', 'keeper_config_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/config', 'keeper_db_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/coordination', 'keeper_logs_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/log', 'keeper_config_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/config', 'keeper_db_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/coordination', 'keeper_logs_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/log', 'keeper_config_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/config', 'keeper_db_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/coordination'} stored in /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env (cluster.py:96, _create_env_file) 2026-04-10 18:38:42.627000 [ 638 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2026-04-10 18:38:42.627000 [ 638 ] DEBUG : No config file found (config.py:28, find_config_file) 2026-04-10 18:38:42.627000 [ 638 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2026-04-10 18:38:42.627000 [ 638 ] DEBUG : No config file found (config.py:28, find_config_file) 2026-04-10 18:38:42.639000 [ 638 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2026-04-10 18:38:42.640000 [ 638 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml pull] (cluster.py:121, run_and_check) 2026-04-10 18:38:53.122000 [ 638 ] DEBUG : Stderr: zoo2 Skipped - Image is already being pulled by zoo1 (cluster.py:147, run_and_check) 2026-04-10 18:38:53.122000 [ 638 ] DEBUG : Stderr: node2 Skipped - Image is already being pulled by zoo1 (cluster.py:147, run_and_check) 2026-04-10 18:38:53.123000 [ 638 ] DEBUG : Stderr: node1 Skipped - Image is already being pulled by zoo1 (cluster.py:147, run_and_check) 2026-04-10 18:38:53.123000 [ 638 ] DEBUG : Stderr: zoo3 Skipped - Image is already being pulled by zoo1 (cluster.py:147, run_and_check) 2026-04-10 18:38:53.123000 [ 638 ] DEBUG : Stderr: zoo1 Pulling (cluster.py:147, run_and_check) 2026-04-10 18:38:53.123000 [ 638 ] DEBUG : Stderr: zoo1 Pulled (cluster.py:147, run_and_check) 2026-04-10 18:38:53.123000 [ 638 ] DEBUG : Setup ZooKeeper (cluster.py:2809, start) 2026-04-10 18:38:53.123000 [ 638 ] DEBUG : Creating internal ZooKeeper dirs: ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/coordination'] (cluster.py:2810, start) 2026-04-10 18:38:53.125000 [ 638 ] DEBUG : Command:[docker compose --project-name roottestbackuprestoreonclustercancelbackup-gw1 --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --verbose up -d] (cluster.py:121, run_and_check) 2026-04-10 18:38:53.830000 [ 638 ] DEBUG : Stderr:time="2026-04-10T18:38:53Z" level=trace msg="Docker Desktop integration not enabled" (cluster.py:147, run_and_check) 2026-04-10 18:38:53.831000 [ 638 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Creating (cluster.py:147, run_and_check) 2026-04-10 18:38:53.831000 [ 638 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Created (cluster.py:147, run_and_check) 2026-04-10 18:38:53.831000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Creating (cluster.py:147, run_and_check) 2026-04-10 18:38:53.831000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Creating (cluster.py:147, run_and_check) 2026-04-10 18:38:53.831000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Creating (cluster.py:147, run_and_check) 2026-04-10 18:38:53.832000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Created (cluster.py:147, run_and_check) 2026-04-10 18:38:53.832000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Created (cluster.py:147, run_and_check) 2026-04-10 18:38:53.832000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Created (cluster.py:147, run_and_check) 2026-04-10 18:38:53.832000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Starting (cluster.py:147, run_and_check) 2026-04-10 18:38:53.832000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Starting (cluster.py:147, run_and_check) 2026-04-10 18:38:53.832000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Starting (cluster.py:147, run_and_check) 2026-04-10 18:38:53.833000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Started (cluster.py:147, run_and_check) 2026-04-10 18:38:53.833000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Started (cluster.py:147, run_and_check) 2026-04-10 18:38:53.833000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Started (cluster.py:147, run_and_check) 2026-04-10 18:38:53.833000 [ 638 ] DEBUG : Stderr:time="2026-04-10T18:38:53Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2026-04-10 18:38:53.833000 [ 638 ] DEBUG : Stderr:time="2026-04-10T18:38:53Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2026-04-10 18:38:53.834000 [ 638 ] DEBUG : Wait ZooKeeper to start (cluster.py:2446, wait_zookeeper_to_start) 2026-04-10 18:38:53.834000 [ 638 ] DEBUG : get_instance_ip instance_name=zoo1 (cluster.py:2015, get_instance_ip) 2026-04-10 18:38:53.837000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:38:53.838000 [ 638 ] DEBUG : get_kazoo_client: zoo1, ip:172.16.1.3, port:2181, use_ssl:False (cluster.py:3322, get_kazoo_client) 2026-04-10 18:38:53.840000 [ 638 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 18:38:53.841000 [ 638 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 18:38:53.969000 [ 638 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 18:38:53.970000 [ 638 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 18:38:54.124000 [ 638 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 18:38:54.125000 [ 638 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 18:38:54.535000 [ 638 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 18:38:54.536000 [ 638 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 18:38:55.125000 [ 638 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 18:38:55.126000 [ 638 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 18:38:55.979000 [ 638 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 18:38:55.980000 [ 638 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 18:38:57.718000 [ 638 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 18:38:57.719000 [ 638 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 18:39:01.862000 [ 638 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 18:39:01.863000 [ 638 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-04-10 18:39:01.869000 [ 638 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-04-10 18:39:01.869000 [ 638 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-04-10 18:39:01.871000 [ 638 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-04-10 18:39:01.872000 [ 638 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-04-10 18:39:01.877000 [ 638 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-04-10 18:39:01.877000 [ 638 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-04-10 18:39:01.877000 [ 638 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-04-10 18:39:01.948000 [ 638 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-04-10 18:39:01.948000 [ 638 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-04-10 18:39:01.949000 [ 638 ] DEBUG : get_instance_ip instance_name=zoo2 (cluster.py:2015, get_instance_ip) 2026-04-10 18:39:01.952000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:01.953000 [ 638 ] DEBUG : get_kazoo_client: zoo2, ip:172.16.1.2, port:2181, use_ssl:False (cluster.py:3322, get_kazoo_client) 2026-04-10 18:39:01.955000 [ 638 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 18:39:01.956000 [ 638 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-04-10 18:39:01.965000 [ 638 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-04-10 18:39:01.966000 [ 638 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-04-10 18:39:01.966000 [ 638 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-04-10 18:39:01.967000 [ 638 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-04-10 18:39:01.973000 [ 638 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-04-10 18:39:01.973000 [ 638 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-04-10 18:39:01.973000 [ 638 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-04-10 18:39:02.046000 [ 638 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-04-10 18:39:02.046000 [ 638 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-04-10 18:39:02.047000 [ 638 ] DEBUG : get_instance_ip instance_name=zoo3 (cluster.py:2015, get_instance_ip) 2026-04-10 18:39:02.050000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:02.051000 [ 638 ] DEBUG : get_kazoo_client: zoo3, ip:172.16.1.4, port:2181, use_ssl:False (cluster.py:3322, get_kazoo_client) 2026-04-10 18:39:02.053000 [ 638 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 18:39:02.053000 [ 638 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-04-10 18:39:02.064000 [ 638 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-04-10 18:39:02.065000 [ 638 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-04-10 18:39:02.066000 [ 638 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-04-10 18:39:02.066000 [ 638 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-04-10 18:39:02.072000 [ 638 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-04-10 18:39:02.072000 [ 638 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-04-10 18:39:02.073000 [ 638 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-04-10 18:39:02.141000 [ 638 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-04-10 18:39:02.142000 [ 638 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-04-10 18:39:02.142000 [ 638 ] DEBUG : All instances of ZooKeeper started: ('zoo1', 'zoo2', 'zoo3') (cluster.py:2462, wait_zookeeper_nodes_to_start) 2026-04-10 18:39:02.143000 [ 638 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml up -d --no-recreate') (cluster.py:3149, start) 2026-04-10 18:39:02.143000 [ 638 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml up -d --no-recreate] (cluster.py:121, run_and_check) 2026-04-10 18:39:02.754000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Running (cluster.py:147, run_and_check) 2026-04-10 18:39:02.754000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Running (cluster.py:147, run_and_check) 2026-04-10 18:39:02.754000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Running (cluster.py:147, run_and_check) 2026-04-10 18:39:02.755000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Creating (cluster.py:147, run_and_check) 2026-04-10 18:39:02.755000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Creating (cluster.py:147, run_and_check) 2026-04-10 18:39:02.755000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Created (cluster.py:147, run_and_check) 2026-04-10 18:39:02.755000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Created (cluster.py:147, run_and_check) 2026-04-10 18:39:02.755000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Starting (cluster.py:147, run_and_check) 2026-04-10 18:39:02.755000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Starting (cluster.py:147, run_and_check) 2026-04-10 18:39:02.755000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Started (cluster.py:147, run_and_check) 2026-04-10 18:39:02.755000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Started (cluster.py:147, run_and_check) 2026-04-10 18:39:02.755000 [ 638 ] DEBUG : ClickHouse instance created (cluster.py:3157, start) 2026-04-10 18:39:02.755000 [ 638 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:2015, get_instance_ip) 2026-04-10 18:39:02.759000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:02.761000 [ 638 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:2025, get_instance_global_ipv6) 2026-04-10 18:39:02.765000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:02.766000 [ 638 ] DEBUG : Waiting for ClickHouse start in node1, ip: 172.16.1.6... (cluster.py:3165, start) 2026-04-10 18:39:02.768000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:02.770000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:02.874000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:02.978000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:03.083000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:03.187000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:03.291000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:03.396000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:03.500000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:03.604000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:03.707000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:03.812000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:03.917000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:04.022000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:04.127000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:04.231000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:04.336000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:04.441000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:04.545000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:04.649000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:04.754000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:04.858000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:04.961000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:05.065000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:05.169000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:05.273000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:05.377000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:05.481000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:05.586000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:05.690000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:05.794000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:05.898000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:06.002000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d788684be77f9e17420ba4db316a72ed7fbb47a953063382d545015aaebb7f9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:06.003000 [ 638 ] DEBUG : ClickHouse node1 started (cluster.py:3169, start) 2026-04-10 18:39:06.004000 [ 638 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:2015, get_instance_ip) 2026-04-10 18:39:06.007000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:06.007000 [ 638 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:2025, get_instance_global_ipv6) 2026-04-10 18:39:06.009000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:06.010000 [ 638 ] DEBUG : Waiting for ClickHouse start in node2, ip: 172.16.1.5... (cluster.py:3165, start) 2026-04-10 18:39:06.012000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:06.014000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/containers/f55710cd386f1fbf6f2aa142586541b8361d955a5272a2a56575a3677156522f/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 18:39:06.015000 [ 638 ] DEBUG : ClickHouse node2 started (cluster.py:3169, start) ----------------------------- Captured stdout call ----------------------------- Using node1 as initiator Sleeping 2.458940719491491 seconds Waiting for number of system processes = 1+ Got 2 system processes for backup 989014af01ef4d6092eab0f56dbbc4ca after waiting 0 seconds node1: Restarting... node1: Restarted Waiting for number of system processes = 0 Got 0 system processes for backup 989014af01ef4d6092eab0f56dbbc4ca after waiting 0 seconds node1: Found errors: ['NETLINK_ERROR'] NO_ELEMENTS_IN_CONFIG Certificate file is not set. NETLINK_ERROR Can\'t receive Netlink response: error -2 ------------------------------ Captured log call ------------------------------- 2026-04-10 18:39:07.019000 [ 638 ] DEBUG : Executing query SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' AND NOT (name == 'alive_tracker') on node1 (cluster.py:3658, query) 2026-04-10 18:39:07.436000 [ 638 ] DEBUG : Executing query CREATE TABLE tbl ON CLUSTER 'cluster' (x UInt64) ENGINE=ReplicatedMergeTree('/clickhouse/tables/tbl/', '{replica}') ORDER BY tuple() PARTITION BY x%10 on node1 (cluster.py:3658, query) 2026-04-10 18:39:07.953000 [ 638 ] DEBUG : Executing query INSERT INTO tbl SELECT number FROM numbers(10) on node1 (cluster.py:3658, query) 2026-04-10 18:39:08.520000 [ 638 ] DEBUG : Executing query BACKUP TABLE tbl ON CLUSTER 'cluster' TO Disk('backups', '989014af01ef4d6092eab0f56dbbc4ca') SETTINGS id='989014af01ef4d6092eab0f56dbbc4ca' ASYNC on node1 (cluster.py:3658, query) 2026-04-10 18:39:08.887000 [ 638 ] DEBUG : Executing query SELECT status FROM system.backups WHERE id='989014af01ef4d6092eab0f56dbbc4ca' on node1 (cluster.py:3658, query) 2026-04-10 18:39:09.254000 [ 638 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%989014af01ef4d6092eab0f56dbbc4ca%') on node1 (cluster.py:3658, query) 2026-04-10 18:39:12.082000 [ 638 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%989014af01ef4d6092eab0f56dbbc4ca%') on node1 (cluster.py:3658, query) 2026-04-10 18:39:12.450000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:True cmd: ['bash', '-c', 'ps -C clickhouse'] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:12.450000 [ 638 ] DEBUG : Command:[docker exec -u root roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps -C clickhouse] (cluster.py:121, run_and_check) 2026-04-10 18:39:12.517000 [ 638 ] DEBUG : Stdout: PID TTY TIME CMD (cluster.py:145, run_and_check) 2026-04-10 18:39:12.517000 [ 638 ] DEBUG : Stdout: 8 ? 00:00:05 clickhouse (cluster.py:145, run_and_check) 2026-04-10 18:39:12.517000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', 'pkill clickhouse'] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:12.517000 [ 638 ] DEBUG : Command:[docker exec -u root roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c pkill clickhouse] (cluster.py:121, run_and_check) 2026-04-10 18:39:12.578000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:12.579000 [ 638 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-04-10 18:39:12.638000 [ 638 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-04-10 18:39:13.639000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:13.640000 [ 638 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-04-10 18:39:13.704000 [ 638 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-04-10 18:39:14.705000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:14.706000 [ 638 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-04-10 18:39:14.764000 [ 638 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-04-10 18:39:15.765000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:15.766000 [ 638 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-04-10 18:39:15.833000 [ 638 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-04-10 18:39:16.834000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:16.835000 [ 638 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-04-10 18:39:16.901000 [ 638 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-04-10 18:39:17.903000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:17.904000 [ 638 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-04-10 18:39:17.973000 [ 638 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-04-10 18:39:18.974000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:18.975000 [ 638 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-04-10 18:39:19.051000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:19.051000 [ 638 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-04-10 18:39:19.121000 [ 638 ] DEBUG : No clickhouse process running. Start new one. (cluster.py:4024, start_clickhouse) 2026-04-10 18:39:19.125000 [ 638 ] DEBUG : http://localhost:None "POST /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node1-1/exec HTTP/1.1" 201 74 (connectionpool.py:547, _make_request) 2026-04-10 18:39:19.162000 [ 638 ] DEBUG : http://localhost:None "POST /v1.46/exec/5cba2e7b239e4f4daf87940c4483a909e12bd82c2f19cff19bf30611025bfc85/start HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2026-04-10 18:39:19.166000 [ 638 ] DEBUG : http://localhost:None "GET /v1.46/exec/5cba2e7b239e4f4daf87940c4483a909e12bd82c2f19cff19bf30611025bfc85/json HTTP/1.1" 200 585 (connectionpool.py:547, _make_request) 2026-04-10 18:39:20.168000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:20.168000 [ 638 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-04-10 18:39:20.242000 [ 638 ] DEBUG : Stdout:814 (cluster.py:145, run_and_check) 2026-04-10 18:39:20.242000 [ 638 ] DEBUG : Clickhouse process running. (cluster.py:4038, start_clickhouse) 2026-04-10 18:39:20.242000 [ 638 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2061, exec_in_container) 2026-04-10 18:39:20.243000 [ 638 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-04-10 18:39:20.303000 [ 638 ] DEBUG : Stdout:814 (cluster.py:145, run_and_check) 2026-04-10 18:39:20.303000 [ 638 ] DEBUG : Executing query select 20 on node1 (cluster.py:3658, query) 2026-04-10 18:39:21.020000 [ 638 ] DEBUG : Executing query select 20 on node1 (cluster.py:3658, query) 2026-04-10 18:39:21.738000 [ 638 ] DEBUG : Executing query select 20 on node1 (cluster.py:3658, query) 2026-04-10 18:39:22.455000 [ 638 ] DEBUG : Executing query select 20 on node1 (cluster.py:3658, query) 2026-04-10 18:39:23.173000 [ 638 ] DEBUG : Executing query select 20 on node1 (cluster.py:3658, query) 2026-04-10 18:39:23.541000 [ 638 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%989014af01ef4d6092eab0f56dbbc4ca%') on node1 (cluster.py:3658, query) 2026-04-10 18:39:23.958000 [ 638 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%989014af01ef4d6092eab0f56dbbc4ca%') on node2 (cluster.py:3658, query) 2026-04-10 18:39:24.326000 [ 638 ] DEBUG : Executing query SYSTEM FLUSH LOGS on node1 (cluster.py:3658, query) 2026-04-10 18:39:25.597000 [ 638 ] DEBUG : Executing query SELECT status FROM system.backup_log WHERE id='989014af01ef4d6092eab0f56dbbc4ca' ORDER BY status on node1 (cluster.py:3658, query) 2026-04-10 18:39:25.964000 [ 638 ] DEBUG : Executing query SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' AND NOT (name == 'alive_tracker') on node1 (cluster.py:3658, query) 2026-04-10 18:39:26.381000 [ 638 ] DEBUG : Executing query SELECT name FROM system.errors WHERE last_error_time >= toDateTime('2026-04-10 18:39:07') AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) AND NOT (name == 'NO_ELEMENTS_IN_CONFIG') on node1 (cluster.py:3658, query) 2026-04-10 18:39:26.749000 [ 638 ] DEBUG : Executing query SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('2026-04-10 18:39:07') on node1 (cluster.py:3658, query) ---------------------------- Captured log teardown ----------------------------- 2026-04-10 18:39:27.218000 [ 638 ] DEBUG : Executing query DROP TABLE IF EXISTS tbl ON CLUSTER 'cluster' SYNC on node1 (cluster.py:3658, query) 2026-04-10 18:39:27.686000 [ 638 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml stop --timeout 20] (cluster.py:121, run_and_check) 2026-04-10 18:39:28.799000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 18:39:28.800000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 18:39:28.800000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 18:39:28.800000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 18:39:28.800000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 18:39:28.800000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 18:39:28.800000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 18:39:28.800000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 18:39:28.800000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 18:39:28.800000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 18:39:28.800000 [ 638 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2026-04-10 18:39:28.815000 [ 638 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2026-04-10 18:39:28.831000 [ 638 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml down --volumes] (cluster.py:121, run_and_check) 2026-04-10 18:39:29.346000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 18:39:29.347000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 18:39:29.347000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 18:39:29.347000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Removing (cluster.py:147, run_and_check) 2026-04-10 18:39:29.347000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 18:39:29.347000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Removing (cluster.py:147, run_and_check) 2026-04-10 18:39:29.347000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Removed (cluster.py:147, run_and_check) 2026-04-10 18:39:29.348000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Removed (cluster.py:147, run_and_check) 2026-04-10 18:39:29.348000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 18:39:29.348000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 18:39:29.348000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 18:39:29.348000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 18:39:29.349000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Removing (cluster.py:147, run_and_check) 2026-04-10 18:39:29.349000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 18:39:29.349000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Removing (cluster.py:147, run_and_check) 2026-04-10 18:39:29.349000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 18:39:29.349000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Removing (cluster.py:147, run_and_check) 2026-04-10 18:39:29.350000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Removed (cluster.py:147, run_and_check) 2026-04-10 18:39:29.350000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Removed (cluster.py:147, run_and_check) 2026-04-10 18:39:29.350000 [ 638 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Removed (cluster.py:147, run_and_check) 2026-04-10 18:39:29.350000 [ 638 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Removing (cluster.py:147, run_and_check) 2026-04-10 18:39:29.350000 [ 638 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Removed (cluster.py:147, run_and_check) 2026-04-10 18:39:29.350000 [ 638 ] DEBUG : Cleanup called (cluster.py:861, cleanup) 2026-04-10 18:39:29.381000 [ 638 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:840, print_all_docker_pieces) 2026-04-10 18:39:29.410000 [ 638 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:848, print_all_docker_pieces) 2026-04-10 18:39:29.442000 [ 638 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw1 are DRIVER VOLUME NAME (cluster.py:856, print_all_docker_pieces) 2026-04-10 18:39:29.443000 [ 638 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclustercancelbackup-gw1-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2026-04-10 18:39:29.472000 [ 638 ] DEBUG : Unstopped containers: {} (cluster.py:875, cleanup) 2026-04-10 18:39:29.472000 [ 638 ] DEBUG : No running containers for project: roottestbackuprestoreonclustercancelbackup-gw1 (cluster.py:889, cleanup) 2026-04-10 18:39:29.472000 [ 638 ] DEBUG : Trying to prune unused networks... (cluster.py:895, cleanup) 2026-04-10 18:39:29.503000 [ 638 ] DEBUG : Trying to prune unused images... (cluster.py:911, cleanup) 2026-04-10 18:39:29.504000 [ 638 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2026-04-10 18:39:29.545000 [ 638 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2026-04-10 18:39:29.546000 [ 638 ] DEBUG : Images pruned (cluster.py:914, cleanup) 2026-04-10 18:39:29.546000 [ 638 ] DEBUG : Trying to prune unused volumes... (cluster.py:920, cleanup) 2026-04-10 18:39:29.546000 [ 638 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2026-04-10 18:39:29.576000 [ 638 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-04-10 18:39:29.576000 [ 638 ] DEBUG : Volumes pruned: 1 (cluster.py:925, cleanup) ----------------- generated report log file: parallel0_1.jsonl ----------------- ============================== slowest durations =============================== 23.67s setup test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 21.10s call test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 2.36s teardown test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup =========================== short test summary info ============================ FAILED test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup ============================== 1 failed in 59.42s ============================== Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 492, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_490ioh --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 ' returned non-zero exit status 1.